﻿/* ========================================================================= *\
    vmcarousel plugin
\* ========================================================================= */

.vmc-container {
    position: relative;
}

.vmc-viewport {
    overflow: hidden;
}

.vmcarousel {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 1000%;
}

.vmcarousel:after {
    content: '';
    display: table;
    clear: both;
}

.vmcarousel > li {
    float: left;
}

.vmcarousel > li img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.vmc-container.hide-controls .vmc-arrow-left, .vmc-container.hide-controls .vmc-arrow-right {
    display: none;
}

.vmc-arrow-left {
    position: absolute;
    top: 50%;
    left: -15px;
    width:40px;
    height:60px;
    margin-top: -25px;
    overflow: hidden;
    opacity: 0;
    /*border-radius: 50%;*/
    transition: opacity 0.3s ease;
    text-align: center;
    /*background: url("../images/left.png") no-repeat;*/
}

.vmc-arrow-right {
    position: absolute;
    top: 50%;
    left: -15px;
    width:40px;
    height:60px;
    margin-top: -25px;
    overflow: hidden;
    opacity: 0;

    transition: opacity 0.3s ease;
    text-align: center;
    /*background: url("../images/left.png") no-repeat;*/
}

.vmc-arrow-right {
    left: auto;
    right: -15px;
}

.vmc-container:hover .vmc-arrow-left, .vmc-container:hover .vmc-arrow-right {
    opacity: 1;
}

.vmc-arrow-left:after, .vmc-arrow-right:after {
    content: '';
    display: inline-block;
    font-family: 'Glyphicons Halflings';

    font-weight: 400;
    padding-top: 12px;

    -webkit-font-smoothing: antialiased;
    font-size: 30px;
    line-height: 30px;
    color: rgba(247, 247, 247, 1);

    -moz-osx-font-smoothing: grayscale;
    text-shadow: 2px 2px #000;
    width:40px;
    height:60px;
    background:rgba(0,0,0,1);
    opacity:0.3;
}

.vmc-arrow-left:hover:after, .vmc-arrow-right:hover:after {
    color: white;
}

.vmc-arrow-left:after {
    /* content: "\e079"; */
    background: rgba(0,0,0,1) url("../images/left.png") no-repeat;
    /*font-size:20px;*/


    /*content: '';*/
    /*background-image: url('../images/left.png');*/

}

.vmc-arrow-right:after {
    /* content: "\e080"; */
    /*font-size: 20px;*/
    background: rgba(0,0,0,1) url("../images/right.png") no-repeat;
    /*!*content: '';*!*/
    /*display: block;*/
    /*width: 20px;*/
    /*height: 31px;*/
    /*background: url('../images/6eab4d6a1fbe4c45904fdced01096821.gif).png');*/
    /*background-size: cover;*/
    /*!*background-color: red;*!*/
}

.vmc-container img[src$=".svg"] {
    width: 100% !important;
    height: auto !important;
    max-height: 100%;
}

.notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}
